a0552e9d11d7cc97ae2c3ecc5b61d9744ede51b6,platform/lang-impl/src/com/intellij/openapi/roots/libraries/ui/impl/DetectedRootsChooserDialog.java,VirtualFileCheckedTreeNode,VirtualFileCheckedTreeNode,#SuggestedChildRootInfo#String#,198
Before Change
public VirtualFileCheckedTreeNode(SuggestedChildRootInfo rootInfo, String rootType) {
super(rootInfo);
myFile = rootInfo.getSuggestedRoot();
myRootType = rootType;
}
After Change
public VirtualFileCheckedTreeNode(SuggestedChildRootInfo rootInfo, String rootType) {
super(rootInfo);
myFile = rootInfo.getSuggestedRoot().getFile();
myRootType = rootType;
}